home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / QuickDraw3D 1.6 SDK / Mac SampleCode Previous / Grab Bag Samples - Mac / Unsupported Libraries / PictRead.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-05-18  |  1.0 KB  |  47 lines  |  [TEXT/MPS ]

  1. #pragma once
  2. /******************************************************************************
  3.  **                                                                             **
  4.  **     Module:        PictRead.h                                                 **
  5.  **                                                                          **
  6.  **                                                                          **
  7.  **                                                                          **
  8.  **     Purpose:     protos for PICT to TEX routines                             **
  9.  **                                                                          **
  10.  **                                                                          **
  11.  **                                                                          **
  12.  **     Copyright (C) 1992-1995 Apple Computer, Inc.  All rights reserved.     **
  13.  **                                                                          **
  14.  **                                                                          **
  15.  *****************************************************************************/
  16. #ifndef PictRead_h
  17. #define PictRead_h
  18.  
  19. #include <Files.h>        /* for FSSpecPtr */
  20.  
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif    /* __cplusplus */
  24.  
  25.  
  26. PicHandle OpenPICTFile(
  27.     FSSpecPtr fileSpec);
  28.  
  29. PicHandle GetPICTFile( 
  30.     void);
  31.     
  32. short LoadMapPICT(
  33.     PicHandle            pict,
  34.     unsigned long         mapId,
  35.     unsigned long         mapSizeX, 
  36.     unsigned long         mapSizeY, 
  37.     TQ3StoragePixmap     *bMap);
  38.     
  39.     
  40. #ifdef __cplusplus
  41. }
  42. #endif    /* __cplusplus */
  43.  
  44.     
  45. #endif  /*  PictRead_h  */
  46.  
  47.